/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Facades; import ant.Reine; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; @Stateless public class ReineFacade extends AbstractFacade<Reine> implements ReineFacadeLocal { @PersistenceContext(unitName = "Chess-ejbPU") private EntityManager em; @Override protected EntityManager getEntityManager() { return em; } public ReineFacade() { super(Reine.class); } }